home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Python / getplatform.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  125 b   |  12 lines

  1. #include "Python.h"
  2.  
  3. #ifndef PLATFORM
  4. #define PLATFORM "unknown"
  5. #endif
  6.  
  7. const char *
  8. Py_GetPlatform()
  9. {
  10.     return PLATFORM;
  11. }
  12.